home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / send / programs / tkSend4 < prev    next >
Text File  |  1995-06-29  |  238b  |  13 lines

  1. #!/pub/local/bin/wish -f
  2.  
  3. button .button -command incrementLabel -text 1
  4. pack .button -side left
  5.  
  6. proc incrementLabel {} {
  7.   set text [.button configure -text]
  8.   set value [lindex $text 4]
  9.   incr value
  10.   .button configure -text $value
  11. }
  12.  
  13.